home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Just Call Me Internet
/
Just Call Me Internet.iso
/
archives
/
com
/
internet
/
stik
/
gls002b5.zoo
/
cookie.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-04-26
|
489b
|
27 lines
/*
* This file has been modified as part of the FreeMiNT project. See
* the file Changes.MH for details and dates.
*/
/* header file for dealing with the cookie jar */
#ifndef _COOKIE_H
#define _COOKIE_H
struct cookie {
long tag;
long value;
};
typedef struct cookie COOKIE;
#define CJAR ((COOKIE **) 0x5a0)
/* List of currently available tag values */
#define COOKIE_MiNT 0x4d694e54L /* 'MiNT' */
#define COOKIE_STiK 0x5354694bL /* 'STiK' */
#endif /* _COOKIE_H */